The leftOverSamples field of a compressed sound header contains a pointer to a leftover block, defined by the LeftOverBlock data type.
TYPE LeftOverBlock =
RECORD
count: LongInt;
sampleArea: PACKED ARRAY[0..leftOverBlockSize - 1] OF Byte;
END;
CONST
leftOverBlockSize = 32;
| Previous | Chapter contents | Chapter top | Section top | Next |